﻿2026-08-04T03:12:39.4772955Z ##[group]Run set -euo pipefail
2026-08-04T03:12:39.4773246Z [36;1mset -euo pipefail[0m
2026-08-04T03:12:39.4773461Z [36;1mPIN=0c95435[0m
2026-08-04T03:12:39.4773656Z [36;1mCACHE="$HOME/spt-n1-oldbroker"[0m
2026-08-04T03:12:39.4773890Z [36;1mBIN="$CACHE/target/debug/spt"[0m
2026-08-04T03:12:39.4774186Z [36;1m# Self-healing cache: rebuild the pin only when it moves. Clone OUTSIDE[0m
2026-08-04T03:12:39.4774582Z [36;1m# the workspace (a clone inside gets adopted by the cargo workspace).[0m
2026-08-04T03:12:39.4774997Z [36;1mif [ ! -x "$BIN" ] || [ "$(cat "$CACHE/.builtpin" 2>/dev/null || true)" != "$PIN" ]; then[0m
2026-08-04T03:12:39.4775326Z [36;1m  rm -rf "$CACHE"[0m
2026-08-04T03:12:39.4775541Z [36;1m  git clone "$GITHUB_WORKSPACE" "$CACHE"[0m
2026-08-04T03:12:39.4775799Z [36;1m  git -C "$CACHE" checkout "$PIN"[0m
2026-08-04T03:12:39.4776270Z [36;1m  # CARGO_INCREMENTAL=0 — THE one-shot build in this workflow (releases#103:[0m
2026-08-04T03:12:39.4776677Z [36;1m  # -29.8% wall, -5.65 GB of target, n=3, slowest-OFF beat fastest-ON). The[0m
2026-08-04T03:12:39.4777098Z [36;1m  # finding is scoped to COLD one-shot builds and this is the only CI site that[0m
2026-08-04T03:12:39.4777512Z [36;1m  # is one: the cache is `rm -rf`'d and rebuilt from scratch when the pin moves,[0m
2026-08-04T03:12:39.4777907Z [36;1m  # and between pin moves it is consumed as a BINARY and never recompiled — so[0m
2026-08-04T03:12:39.4778313Z [36;1m  # the incremental state it would write is never read by anything, ever. Every[0m
2026-08-04T03:12:39.4778718Z [36;1m  # other cargo invocation in this workflow builds into the runner's PERSISTENT[0m
2026-08-04T03:12:39.4779272Z [36;1m  # `_work` target, where incremental is the mechanism that makes the next run[0m
2026-08-04T03:12:39.4779620Z [36;1m  # cheap; those are deliberately left alone.[0m
2026-08-04T03:12:39.4779971Z [36;1m  CARGO_INCREMENTAL=0 bash .github/bench/wrap.sh n1-oldbroker-build -- \[0m
2026-08-04T03:12:39.4780372Z [36;1m    cargo build --manifest-path "$CACHE/Cargo.toml" -p spt --bin spt[0m
2026-08-04T03:12:39.4780696Z [36;1m  echo "$PIN" > "$CACHE/.builtpin"[0m
2026-08-04T03:12:39.4780920Z [36;1mfi[0m
2026-08-04T03:12:39.4781197Z [36;1mSPT_N1_OLD_BROKER="$BIN" bash .github/bench/wrap.sh n1-pairing -- \[0m
2026-08-04T03:12:39.4781778Z [36;1m  cargo test -p spt --test n1_pairing -- --nocapture[0m
2026-08-04T03:12:39.4793980Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2026-08-04T03:12:39.4794261Z env:
2026-08-04T03:12:39.4794438Z   RUSTFLAGS: -C link-arg=-fuse-ld=mold
2026-08-04T03:12:39.4794795Z   SPT_CI_TEST_TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30873007187-1-eN4Z5R
2026-08-04T03:12:39.4795230Z   TEMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30873007187-1-eN4Z5R
2026-08-04T03:12:39.4795643Z   TMP: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30873007187-1-eN4Z5R
2026-08-04T03:12:39.4796060Z   TMPDIR: /home/reavus/actions-runner/_work/_temp/spt-test-tmp-30873007187-1-eN4Z5R
2026-08-04T03:12:39.4796384Z ##[endgroup]
2026-08-04T03:12:39.7803463Z    Compiling proc-macro2 v1.0.106
2026-08-04T03:12:39.7803864Z    Compiling unicode-ident v1.0.24
2026-08-04T03:12:39.7804140Z    Compiling quote v1.0.45
2026-08-04T03:12:39.7804393Z    Compiling libc v0.2.186
2026-08-04T03:12:39.7804651Z    Compiling serde_core v1.0.228
2026-08-04T03:12:39.7805055Z    Compiling cfg-if v1.0.4
2026-08-04T03:12:39.7805563Z    Compiling serde v1.0.228
2026-08-04T03:12:39.7844344Z    Compiling typenum v1.20.1
2026-08-04T03:12:39.7896406Z    Compiling log v0.4.32
2026-08-04T03:12:39.7940106Z    Compiling portable-atomic v1.13.1
2026-08-04T03:12:39.7980748Z    Compiling pin-project-lite v0.2.17
2026-08-04T03:12:39.8004588Z    Compiling memchr v2.8.1
2026-08-04T03:12:39.8005083Z    Compiling version_check v0.9.5
2026-08-04T03:12:39.8005698Z    Compiling critical-section v1.2.0
2026-08-04T03:12:39.8072257Z    Compiling find-msvc-tools v0.1.9
2026-08-04T03:12:39.8410744Z    Compiling shlex v2.0.1
2026-08-04T03:12:39.8724513Z    Compiling futures-core v0.3.32
2026-08-04T03:12:39.8891147Z    Compiling bytes v1.11.1
2026-08-04T03:12:39.9083620Z    Compiling subtle v2.6.1
2026-08-04T03:12:40.0260848Z    Compiling equivalent v1.0.2
2026-08-04T03:12:40.0298897Z    Compiling smallvec v1.15.1
2026-08-04T03:12:40.0571818Z    Compiling itoa v1.0.18
2026-08-04T03:12:40.0798453Z    Compiling semver v1.0.28
2026-08-04T03:12:40.0896842Z    Compiling stable_deref_trait v1.2.1
2026-08-04T03:12:40.0999545Z    Compiling slab v0.4.12
2026-08-04T03:12:40.1347875Z    Compiling futures-sink v0.3.32
2026-08-04T03:12:40.1525886Z    Compiling futures-io v0.3.32
2026-08-04T03:12:40.1528131Z    Compiling generic-array v0.14.7
2026-08-04T03:12:40.1652196Z    Compiling rand_core v0.10.1
2026-08-04T03:12:40.2380836Z    Compiling futures-channel v0.3.32
2026-08-04T03:12:40.2560677Z    Compiling futures-task v0.3.32
2026-08-04T03:12:40.3020381Z    Compiling bitflags v2.12.1
2026-08-04T03:12:40.3048355Z    Compiling getrandom v0.4.2
2026-08-04T03:12:40.3250662Z    Compiling rustversion v1.0.22
2026-08-04T03:12:40.3534735Z    Compiling hashbrown v0.17.1
2026-08-04T03:12:40.3820594Z    Compiling cpufeatures v0.2.17
2026-08-04T03:12:40.4017665Z    Compiling fnv v1.0.7
2026-08-04T03:12:40.4161094Z    Compiling strsim v0.11.1
2026-08-04T03:12:40.4450532Z    Compiling rustc_version v0.4.1
2026-08-04T03:12:40.4820732Z    Compiling cfg_aliases v0.2.1
2026-08-04T03:12:40.5430523Z    Compiling litemap v0.8.2
2026-08-04T03:12:40.5627559Z    Compiling writeable v0.6.3
2026-08-04T03:12:40.5768496Z    Compiling icu_properties_data v2.2.0
2026-08-04T03:12:40.5835754Z    Compiling ident_case v1.0.1
2026-08-04T03:12:40.6032798Z    Compiling fs_extra v1.3.0
2026-08-04T03:12:40.7210524Z    Compiling utf8_iter v1.0.4
2026-08-04T03:12:40.7439372Z    Compiling icu_normalizer_data v2.2.0
2026-08-04T03:12:40.7610483Z    Compiling dunce v1.0.5
2026-08-04T03:12:40.8410584Z    Compiling percent-encoding v2.3.2
2026-08-04T03:12:40.8520243Z    Compiling autocfg v1.5.1
2026-08-04T03:12:40.8620784Z    Compiling http v1.4.1
2026-08-04T03:12:40.9364184Z    Compiling thiserror v2.0.18
2026-08-04T03:12:40.9560884Z    Compiling unicode-segmentation v1.13.3
2026-08-04T03:12:40.9700694Z    Compiling aws-lc-rs v1.17.0
2026-08-04T03:12:40.9770774Z    Compiling cpufeatures v0.3.0
2026-08-04T03:12:41.0290606Z    Compiling scopeguard v1.2.0
2026-08-04T03:12:41.0520799Z    Compiling syn v2.0.117
2026-08-04T03:12:41.0975200Z    Compiling lock_api v0.4.14
2026-08-04T03:12:41.0980927Z    Compiling form_urlencoded v1.2.2
2026-08-04T03:12:41.1310543Z    Compiling untrusted v0.9.0
2026-08-04T03:12:41.1390423Z    Compiling heck v0.5.0
2026-08-04T03:12:41.2678472Z    Compiling indexmap v2.14.0
2026-08-04T03:12:41.2770890Z    Compiling hybrid-array v0.4.12
2026-08-04T03:12:41.2855690Z    Compiling rustls v0.23.40
2026-08-04T03:12:41.2874381Z    Compiling anyhow v1.0.102
2026-08-04T03:12:41.2875365Z    Compiling const-oid v0.10.2
2026-08-04T03:12:41.3736912Z    Compiling unicode-xid v0.2.6
2026-08-04T03:12:41.3830245Z    Compiling atomic-waker v1.1.2
2026-08-04T03:12:41.3896402Z    Compiling httparse v1.10.1
2026-08-04T03:12:41.4820337Z    Compiling fastrand v2.4.1
2026-08-04T03:12:41.4870753Z    Compiling zerocopy v0.8.50
2026-08-04T03:12:41.4915431Z    Compiling parking_lot_core v0.9.12
2026-08-04T03:12:41.4920672Z    Compiling paste v1.0.15
2026-08-04T03:12:41.5400719Z    Compiling convert_case v0.10.0
2026-08-04T03:12:41.6360661Z    Compiling num-traits v0.2.19
2026-08-04T03:12:41.7541019Z    Compiling jobserver v0.1.34
2026-08-04T03:12:41.7931530Z    Compiling curve25519-dalek v4.1.3
2026-08-04T03:12:41.8011112Z    Compiling ahash v0.8.12
2026-08-04T03:12:41.8012323Z    Compiling either v1.16.0
2026-08-04T03:12:41.8116834Z    Compiling base64ct v1.8.3
2026-08-04T03:12:41.8150629Z    Compiling powerfmt v0.2.0
2026-08-04T03:12:41.9198677Z    Compiling http-body v1.0.1
2026-08-04T03:12:42.0171250Z    Compiling crypto-common v0.1.7
2026-08-04T03:12:42.0236214Z    Compiling block-buffer v0.12.0
2026-08-04T03:12:42.0298202Z    Compiling crypto-common v0.2.2
2026-08-04T03:12:42.0362587Z    Compiling cc v1.2.63
2026-08-04T03:12:42.0481645Z    Compiling inout v0.2.2
2026-08-04T03:12:42.0574176Z    Compiling block-buffer v0.10.4
2026-08-04T03:12:42.1220790Z    Compiling pem-rfc7468 v1.0.0
2026-08-04T03:12:42.1727337Z    Compiling deranged v0.5.8
2026-08-04T03:12:42.2228033Z    Compiling digest v0.10.7
2026-08-04T03:12:42.2229462Z    Compiling time-core v0.1.8
2026-08-04T03:12:42.2380796Z    Compiling base64 v0.22.1
2026-08-04T03:12:42.2420769Z    Compiling tinyvec_macros v0.1.1
2026-08-04T03:12:42.3046474Z    Compiling data-encoding v2.11.0
2026-08-04T03:12:42.3222163Z    Compiling pkg-config v0.3.33
2026-08-04T03:12:42.3973564Z    Compiling try-lock v0.2.5
2026-08-04T03:12:42.4290773Z    Compiling vcpkg v0.2.15
2026-08-04T03:12:42.4450837Z    Compiling tower-service v0.3.3
2026-08-04T03:12:42.4987103Z    Compiling mio v1.2.1
2026-08-04T03:12:42.5214458Z    Compiling socket2 v0.6.4
2026-08-04T03:12:42.5666236Z    Compiling getrandom v0.2.17
2026-08-04T03:12:42.6520467Z    Compiling zmij v1.0.21
2026-08-04T03:12:42.8057404Z    Compiling uuid v1.23.2
2026-08-04T03:12:42.8451930Z    Compiling rand_core v0.6.4
2026-08-04T03:12:42.8583577Z    Compiling num-conv v0.2.2
2026-08-04T03:12:42.9278697Z    Compiling parking_lot v0.12.5
2026-08-04T03:12:42.9960781Z    Compiling cipher v0.5.2
2026-08-04T03:12:43.0255612Z    Compiling want v0.3.1
2026-08-04T03:12:43.0306265Z    Compiling sha2 v0.10.9
2026-08-04T03:12:43.2336776Z    Compiling cmake v0.1.58
2026-08-04T03:12:43.2516520Z    Compiling tinyvec v1.11.0
2026-08-04T03:12:43.2831987Z    Compiling chacha20 v0.10.0
2026-08-04T03:12:43.3261166Z    Compiling inout v0.1.4
2026-08-04T03:12:43.3687659Z    Compiling spt-procident v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-procident)
2026-08-04T03:12:43.3825995Z    Compiling vergen-lib v9.1.0
2026-08-04T03:12:43.4690890Z    Compiling n0-future v0.3.2
2026-08-04T03:12:43.5380877Z    Compiling diatomic-waker v0.2.3
2026-08-04T03:12:43.5502169Z    Compiling signature v2.2.0
2026-08-04T03:12:43.5720523Z    Compiling serde_json v1.0.150
2026-08-04T03:12:43.5919472Z    Compiling rand v0.10.1
2026-08-04T03:12:43.5993057Z    Compiling httpdate v1.0.3
2026-08-04T03:12:43.6391342Z    Compiling cordyceps v0.3.4
2026-08-04T03:12:43.6666053Z    Compiling spin v0.10.0
2026-08-04T03:12:43.6694914Z    Compiling crossbeam-utils v0.8.21
2026-08-04T03:12:43.6853884Z    Compiling parking v2.2.1
2026-08-04T03:12:43.6951177Z    Compiling winnow v1.0.3
2026-08-04T03:12:43.7330655Z    Compiling ed25519 v2.2.3
2026-08-04T03:12:43.7746736Z    Compiling spt-poolguard v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-poolguard)
2026-08-04T03:12:43.7850744Z    Compiling cipher v0.4.4
2026-08-04T03:12:43.7907712Z    Compiling digest v0.11.3
2026-08-04T03:12:43.8178622Z    Compiling futures-lite v2.6.1
2026-08-04T03:12:43.9051116Z    Compiling netlink-packet-core v0.8.1
2026-08-04T03:12:43.9510808Z    Compiling universal-hash v0.5.1
2026-08-04T03:12:43.9730223Z    Compiling vergen v9.1.0
2026-08-04T03:12:43.9940971Z    Compiling vergen-lib v0.1.6
2026-08-04T03:12:44.0170737Z    Compiling curve25519-dalek v5.0.0-pre.6
2026-08-04T03:12:44.0539479Z    Compiling futures-buffered v0.2.13
2026-08-04T03:12:44.0540718Z    Compiling heapless v0.7.17
2026-08-04T03:12:44.0726004Z    Compiling noq-udp v0.10.0
2026-08-04T03:12:44.0736283Z    Compiling aho-corasick v1.1.4
2026-08-04T03:12:44.1435748Z    Compiling sync_wrapper v1.0.2
2026-08-04T03:12:44.1512870Z    Compiling aws-lc-sys v0.41.0
2026-08-04T03:12:44.1639082Z    Compiling ring v0.17.14
2026-08-04T03:12:44.2546737Z    Compiling libsqlite3-sys v0.30.1
2026-08-04T03:12:44.2691284Z    Compiling byteorder v1.5.0
2026-08-04T03:12:44.2762439Z    Compiling opaque-debug v0.3.1
2026-08-04T03:12:44.3001194Z    Compiling toml_datetime v1.1.1+spec-1.1.0
2026-08-04T03:12:44.3498285Z    Compiling allocator-api2 v0.2.21
2026-08-04T03:12:44.3680886Z    Compiling regex-syntax v0.8.10
2026-08-04T03:12:44.4510807Z    Compiling hash32 v0.2.1
2026-08-04T03:12:44.5042091Z    Compiling polyval v0.6.2
2026-08-04T03:12:44.5807217Z    Compiling spt-store v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-store)
2026-08-04T03:12:44.6710909Z    Compiling vergen-gitcl v1.0.8
2026-08-04T03:12:44.6830796Z    Compiling spin v0.9.8
2026-08-04T03:12:44.8290742Z    Compiling num_threads v0.1.7
2026-08-04T03:12:44.8370740Z    Compiling fallible-streaming-iterator v0.1.9
2026-08-04T03:12:44.8430771Z    Compiling signature v3.0.0
2026-08-04T03:12:44.8975269Z    Compiling ryu v1.0.23
2026-08-04T03:12:44.9270849Z    Compiling tower-layer v0.3.3
2026-08-04T03:12:44.9500616Z    Compiling fallible-iterator v0.3.0
2026-08-04T03:12:44.9916810Z    Compiling time v0.3.47
2026-08-04T03:12:45.0350714Z    Compiling ghash v0.5.1
2026-08-04T03:12:45.1050498Z    Compiling ctr v0.9.2
2026-08-04T03:12:45.1242122Z    Compiling aes v0.8.4
2026-08-04T03:12:45.1430506Z    Compiling sha2 v0.11.0-rc.5
2026-08-04T03:12:45.3333546Z    Compiling toml_parser v1.1.2+spec-1.1.0
2026-08-04T03:12:45.3810126Z    Compiling fs2 v0.4.3
2026-08-04T03:12:45.4240525Z    Compiling aead v0.5.2
2026-08-04T03:12:45.5359522Z    Compiling http-body-util v0.1.3
2026-08-04T03:12:45.5435122Z    Compiling utf8parse v0.2.2
2026-08-04T03:12:45.6280805Z    Compiling openssl-probe v0.2.1
2026-08-04T03:12:45.7992084Z    Compiling arrayvec v0.7.6
2026-08-04T03:12:45.8511308Z    Compiling synstructure v0.13.2
2026-08-04T03:12:45.8768496Z    Compiling darling_core v0.20.11
2026-08-04T03:12:45.9084121Z    Compiling toml_edit v0.25.12+spec-1.1.0
2026-08-04T03:12:45.9730627Z    Compiling rustix v1.1.4
2026-08-04T03:12:46.0596720Z    Compiling aes-gcm v0.10.3
2026-08-04T03:12:46.1542909Z    Compiling crossbeam-epoch v0.9.18
2026-08-04T03:12:46.2271248Z    Compiling crossbeam-channel v0.5.15
2026-08-04T03:12:46.4723464Z    Compiling netlink-packet-route v0.29.0
2026-08-04T03:12:46.5338198Z    Compiling blake3 v1.8.5
2026-08-04T03:12:46.5933566Z    Compiling memoffset v0.6.5
2026-08-04T03:12:46.6296521Z    Compiling acto v0.8.2
2026-08-04T03:12:46.7481041Z    Compiling netwatch v0.16.0
2026-08-04T03:12:46.8150607Z    Compiling regex-automata v0.4.14
2026-08-04T03:12:46.8426718Z    Compiling proc-macro-crate v3.5.0
2026-08-04T03:12:46.8821307Z    Compiling noq v0.18.0
2026-08-04T03:12:46.9232977Z    Compiling sorted-index-buffer v0.2.1
2026-08-04T03:12:46.9890766Z    Compiling mac-addr v0.3.0
2026-08-04T03:12:47.0703472Z    Compiling identity-hash v0.1.0
2026-08-04T03:12:47.1516091Z    Compiling ref-cast v1.0.25
2026-08-04T03:12:47.1760702Z    Compiling foldhash v0.2.0
2026-08-04T03:12:47.2090863Z    Compiling lru-slab v0.1.2
2026-08-04T03:12:47.3040865Z    Compiling thiserror v1.0.69
2026-08-04T03:12:47.3370777Z    Compiling linux-raw-sys v0.12.1
2026-08-04T03:12:47.3504596Z    Compiling tagptr v0.2.0
2026-08-04T03:12:47.4163278Z    Compiling xml-rs v0.8.28
2026-08-04T03:12:47.4163913Z    Compiling rustc-hash v2.1.2
2026-08-04T03:12:47.5100762Z    Compiling hashbrown v0.16.1
2026-08-04T03:12:47.6290694Z    Compiling serde_derive_internals v0.29.1
2026-08-04T03:12:47.6530669Z    Compiling netlink-packet-route v0.30.0
2026-08-04T03:12:47.8714320Z    Compiling serial-core v0.4.0
2026-08-04T03:12:47.8802413Z    Compiling serde_derive v1.0.228
2026-08-04T03:12:48.0510482Z    Compiling zeroize_derive v1.4.3
2026-08-04T03:12:48.1035210Z    Compiling tokio-macros v2.7.0
2026-08-04T03:12:48.3140745Z    Compiling zerofrom-derive v0.1.7
2026-08-04T03:12:48.3515883Z    Compiling futures-macro v0.3.32
2026-08-04T03:12:48.5948347Z    Compiling zeroize v1.8.2
2026-08-04T03:12:48.7756173Z    Compiling yoke-derive v0.8.2
2026-08-04T03:12:48.7843401Z    Compiling zerovec-derive v0.11.3
2026-08-04T03:12:48.8061012Z    Compiling displaydoc v0.2.6
2026-08-04T03:12:48.8336785Z    Compiling tokio v1.52.3
2026-08-04T03:12:49.2180797Z    Compiling tracing-attributes v0.1.31
2026-08-04T03:12:49.2389301Z    Compiling rustls-pki-types v1.14.1
2026-08-04T03:12:49.3169159Z    Compiling thiserror-impl v2.0.18
2026-08-04T03:12:49.3565299Z    Compiling futures-util v0.3.32
2026-08-04T03:12:49.5993301Z    Compiling curve25519-dalek-derive v0.1.1
2026-08-04T03:12:49.8300492Z    Compiling zerofrom v0.1.8
2026-08-04T03:12:50.0030677Z    Compiling darling_macro v0.20.11
2026-08-04T03:12:50.2211105Z    Compiling yoke v0.8.3
2026-08-04T03:12:50.2320785Z    Compiling derive_more-impl v2.1.1
2026-08-04T03:12:50.2937774Z    Compiling n0-error-macros v0.1.3
2026-08-04T03:12:50.3725220Z    Compiling darling v0.20.11
2026-08-04T03:12:50.4415820Z    Compiling derive_builder_core v0.20.2
2026-08-04T03:12:50.4910836Z    Compiling zerovec v0.11.6
2026-08-04T03:12:50.8740550Z    Compiling zerotrie v0.2.4
2026-08-04T03:12:51.0111921Z    Compiling spez v0.1.2
2026-08-04T03:12:51.2680807Z    Compiling tinystr v0.8.3
2026-08-04T03:12:51.2827353Z    Compiling potential_utf v0.1.5
2026-08-04T03:12:51.3856631Z    Compiling icu_collections v2.2.0
2026-08-04T03:12:51.4034623Z    Compiling n0-error v0.1.3
2026-08-04T03:12:51.4267199Z    Compiling der v0.8.0-rc.10
2026-08-04T03:12:51.5340592Z    Compiling icu_locale_core v2.2.0
2026-08-04T03:12:51.7144962Z    Compiling derive_builder_macro v0.20.2
2026-08-04T03:12:51.7667536Z    Compiling pin-project-internal v1.1.13
2026-08-04T03:12:52.0059242Z    Compiling derive_builder v0.20.2
2026-08-04T03:12:52.0674639Z    Compiling cobs v0.3.0
2026-08-04T03:12:52.5510520Z    Compiling ed25519-dalek v2.2.0
2026-08-04T03:12:52.7600720Z    Compiling icu_provider v2.2.0
2026-08-04T03:12:52.8331124Z    Compiling spt-proto v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-proto)
2026-08-04T03:12:52.9175094Z    Compiling spki v0.8.0-rc.4
2026-08-04T03:12:53.1520207Z    Compiling icu_normalizer v2.2.0
2026-08-04T03:12:53.1578290Z    Compiling icu_properties v2.2.0
2026-08-04T03:12:53.1652893Z    Compiling pin-project v1.1.13
2026-08-04T03:12:53.1719165Z    Compiling pkcs8 v0.11.0-rc.10
2026-08-04T03:12:53.2597294Z    Compiling ipnet v2.12.0
2026-08-04T03:12:53.3042333Z    Compiling futures-executor v0.3.32
2026-08-04T03:12:53.3550893Z    Compiling ed25519 v3.0.0-rc.4
2026-08-04T03:12:53.5267533Z    Compiling futures v0.3.32
2026-08-04T03:12:53.6547542Z    Compiling prefix-trie v0.8.4
2026-08-04T03:12:53.6806512Z    Compiling regex v1.12.3
2026-08-04T03:12:53.8755643Z    Compiling postcard-derive v0.2.2
2026-08-04T03:12:54.0538622Z    Compiling once_cell v1.21.4
2026-08-04T03:12:54.0890976Z    Compiling data-encoding-macro-internal v0.1.18
2026-08-04T03:12:54.3204792Z    Compiling tracing-core v0.1.36
2026-08-04T03:12:54.3880973Z    Compiling rustls-native-certs v0.8.4
2026-08-04T03:12:54.3995038Z    Compiling num_enum_derive v0.7.6
2026-08-04T03:12:54.4472497Z    Compiling postcard v1.1.3
2026-08-04T03:12:54.4620216Z    Compiling enum-assoc v1.3.0
2026-08-04T03:12:54.5111120Z    Compiling hashbrown v0.14.5
2026-08-04T03:12:54.5513912Z    Compiling idna_adapter v1.2.2
2026-08-04T03:12:54.6683237Z    Compiling idna v1.1.0
2026-08-04T03:12:54.8476150Z    Compiling derive_more v2.1.1
2026-08-04T03:12:54.8811221Z    Compiling ed25519-dalek v3.0.0-pre.6
2026-08-04T03:12:54.8920698Z    Compiling data-encoding-macro v0.1.20
2026-08-04T03:12:54.9480583Z    Compiling tracing v0.1.44
2026-08-04T03:12:54.9621801Z    Compiling tokio-util v0.7.18
2026-08-04T03:12:55.0050683Z    Compiling netlink-sys v0.8.8
2026-08-04T03:12:55.0167044Z    Compiling tower v0.5.3
2026-08-04T03:12:55.2151040Z    Compiling url v2.5.8
2026-08-04T03:12:55.3251221Z    Compiling strum_macros v0.28.0
2026-08-04T03:12:55.3450475Z    Compiling hashlink v0.9.1
2026-08-04T03:12:55.3665333Z    Compiling async-trait v0.1.89
2026-08-04T03:12:55.3797408Z    Compiling iroh-metrics-derive v0.4.1
2026-08-04T03:12:55.5178687Z    Compiling netdev v0.42.0
2026-08-04T03:12:55.5831251Z    Compiling num_enum v0.7.6
2026-08-04T03:12:55.6056604Z    Compiling netlink-proto v0.12.0
2026-08-04T03:12:55.6796696Z    Compiling iroh-relay v0.98.0
2026-08-04T03:12:55.7562525Z    Compiling moka v0.12.15
2026-08-04T03:12:55.8090675Z    Compiling rusqlite v0.32.1
2026-08-04T03:12:55.8700476Z    Compiling serde_spanned v0.6.9
2026-08-04T03:12:55.8767172Z    Compiling toml_datetime v0.6.11
2026-08-04T03:12:55.9526600Z    Compiling iroh-metrics v0.38.3
2026-08-04T03:12:55.9761567Z    Compiling xmltree v0.10.3
2026-08-04T03:12:56.0169116Z    Compiling h2 v0.4.14
2026-08-04T03:12:56.2197753Z    Compiling hickory-proto v0.26.0-beta.4
2026-08-04T03:12:56.2263079Z    Compiling n0-watcher v0.6.1
2026-08-04T03:12:56.2287170Z    Compiling tower-http v0.6.11
2026-08-04T03:12:56.4980241Z    Compiling iroh-base v0.98.0
2026-08-04T03:12:56.6176551Z    Compiling attohttpc v0.30.1
2026-08-04T03:12:56.6704747Z    Compiling tokio-stream v0.1.18
2026-08-04T03:12:56.7902605Z    Compiling ref-cast-impl v1.0.25
2026-08-04T03:12:56.8676257Z    Compiling thiserror-impl v1.0.69
2026-08-04T03:12:56.9282624Z    Compiling ioctl-rs v0.1.6
2026-08-04T03:12:57.0215564Z    Compiling errno v0.3.14
2026-08-04T03:12:57.0535239Z    Compiling termios v0.2.2
2026-08-04T03:12:57.1932765Z    Compiling simple-dns v0.9.3
2026-08-04T03:12:57.2610730Z    Compiling sha1_smol v1.0.1
2026-08-04T03:12:57.2820445Z    Compiling smol_str v0.1.24
2026-08-04T03:12:57.2955828Z    Compiling simdutf8 v0.1.5
2026-08-04T03:12:57.3500560Z    Compiling constant_time_eq v0.4.2
2026-08-04T03:12:57.4271116Z    Compiling winnow v0.7.15
2026-08-04T03:12:57.4985665Z    Compiling resolv-conf v0.7.6
2026-08-04T03:12:57.5120906Z    Compiling signal-hook v0.3.18
2026-08-04T03:12:57.5401050Z    Compiling toml_write v0.1.2
2026-08-04T03:12:57.6587748Z    Compiling arrayref v0.3.9
2026-08-04T03:12:57.7826196Z    Compiling serial-unix v0.4.0
2026-08-04T03:12:57.8401052Z    Compiling signal-hook-registry v1.4.8
2026-08-04T03:12:58.0850719Z    Compiling webpki-roots v1.0.7
2026-08-04T03:12:58.1060344Z    Compiling schemars_derive v1.2.1
2026-08-04T03:12:58.2137562Z    Compiling lru v0.16.4
2026-08-04T03:12:58.2459592Z    Compiling strum v0.28.0
2026-08-04T03:12:58.3130881Z    Compiling darling_core v0.23.0
2026-08-04T03:12:58.3760704Z    Compiling serde_bytes v0.11.19
2026-08-04T03:12:58.3831017Z    Compiling seize v0.5.1
2026-08-04T03:12:58.4360410Z    Compiling hmac v0.12.1
2026-08-04T03:12:58.4919756Z    Compiling iroh v0.98.2
2026-08-04T03:12:58.5055473Z    Compiling pin-utils v0.1.0
2026-08-04T03:12:58.5090026Z    Compiling rustix v0.38.44
2026-08-04T03:12:58.5726873Z    Compiling dyn-clone v1.0.20
2026-08-04T03:12:58.5900913Z    Compiling bitflags v1.3.2
2026-08-04T03:12:58.6011504Z    Compiling cmov v0.5.4
2026-08-04T03:12:58.6670653Z    Compiling iroh-dns v0.98.0
2026-08-04T03:12:58.7081056Z    Compiling nix v0.25.1
2026-08-04T03:12:58.7639871Z    Compiling papaya v0.2.4
2026-08-04T03:12:58.8518474Z    Compiling ctutils v0.4.2
2026-08-04T03:12:58.8590668Z    Compiling hkdf v0.12.4
2026-08-04T03:12:58.9260855Z    Compiling filedescriptor v0.8.3
2026-08-04T03:12:59.0180389Z    Compiling serial v0.4.0
2026-08-04T03:12:59.0930381Z    Compiling swarm-discovery v0.6.0-alpha.2 (https://github.com/SaberMage/swarm-discovery?rev=89a2200d54a4e3cab2f46cc75ebff49a1fb07614#89a2200d)
2026-08-04T03:12:59.1224522Z    Compiling backon v1.6.0
2026-08-04T03:12:59.2290783Z    Compiling anstyle-parse v1.0.0
2026-08-04T03:12:59.2600394Z    Compiling vte_generate_state_changes v0.1.2
2026-08-04T03:12:59.3790921Z    Compiling linux-raw-sys v0.4.15
2026-08-04T03:12:59.4233760Z    Compiling anstyle-query v1.1.5
2026-08-04T03:12:59.4351529Z    Compiling is_terminal_polyfill v1.70.2
2026-08-04T03:12:59.4408449Z    Compiling foldhash v0.1.5
2026-08-04T03:12:59.5051813Z    Compiling anstyle v1.0.14
2026-08-04T03:12:59.5283653Z    Compiling downcast-rs v1.2.1
2026-08-04T03:12:59.5316460Z    Compiling instability v0.3.12
2026-08-04T03:12:59.6067229Z    Compiling colorchoice v1.0.5
2026-08-04T03:12:59.6401013Z    Compiling shell-words v1.1.1
2026-08-04T03:12:59.7099886Z    Compiling unicode-width v0.2.0
2026-08-04T03:12:59.7414762Z    Compiling anstream v1.0.0
2026-08-04T03:12:59.7843139Z    Compiling hashbrown v0.15.5
2026-08-04T03:12:59.7940951Z    Compiling vte v0.13.1
2026-08-04T03:13:00.0298403Z    Compiling signal-hook-mio v0.2.5
2026-08-04T03:13:00.1460928Z    Compiling toml_edit v0.22.27
2026-08-04T03:13:00.1630648Z    Compiling spake2 v0.4.0
2026-08-04T03:13:00.1700438Z    Compiling schemars v1.2.1
2026-08-04T03:13:00.1901676Z    Compiling terminal_size v0.4.4
2026-08-04T03:13:00.3242279Z    Compiling strum_macros v0.26.4
2026-08-04T03:13:00.3311439Z    Compiling sha1 v0.10.6
2026-08-04T03:13:00.5612389Z    Compiling itertools v0.13.0
2026-08-04T03:13:00.5782355Z    Compiling castaway v0.2.4
2026-08-04T03:13:00.5880021Z    Compiling indoc v2.0.7
2026-08-04T03:13:00.6750510Z    Compiling static_assertions v1.1.0
2026-08-04T03:13:00.7302543Z    Compiling clap_lex v1.1.0
2026-08-04T03:13:00.8703205Z    Compiling unicode-width v0.1.14
2026-08-04T03:13:00.9690780Z    Compiling doctest-file v1.1.1
2026-08-04T03:13:01.0788272Z    Compiling clap_builder v4.6.0
2026-08-04T03:13:01.0948320Z    Compiling crossterm v0.28.1
2026-08-04T03:13:01.1520582Z    Compiling compact_str v0.8.2
2026-08-04T03:13:01.4860900Z    Compiling interprocess v2.4.2
2026-08-04T03:13:02.0278531Z    Compiling hyper v1.10.1
2026-08-04T03:13:02.1460611Z    Compiling lru v0.12.5
2026-08-04T03:13:02.2431114Z    Compiling darling_macro v0.23.0
2026-08-04T03:13:02.3086832Z    Compiling clap_derive v4.6.1
2026-08-04T03:13:02.4881325Z    Compiling unicode-truncate v1.1.0
2026-08-04T03:13:02.5347126Z    Compiling cassowary v0.3.0
2026-08-04T03:13:02.6111126Z    Compiling darling v0.23.0
2026-08-04T03:13:02.6899257Z    Compiling toml v0.8.23
2026-08-04T03:13:02.8368739Z    Compiling strum v0.26.3
2026-08-04T03:13:02.8932073Z    Compiling iana-time-zone v0.1.65
2026-08-04T03:13:02.9537913Z    Compiling portable-pty v0.8.1
2026-08-04T03:13:03.0704919Z    Compiling chrono v0.4.45
2026-08-04T03:13:03.1501028Z    Compiling nucleo-matcher v0.3.1
2026-08-04T03:13:03.2531111Z    Compiling qrcode v0.14.1
2026-08-04T03:13:03.3600622Z    Compiling ratatui v0.29.0
2026-08-04T03:13:03.4509614Z    Compiling tempfile v3.27.0
2026-08-04T03:13:03.8021092Z    Compiling spt-test-support v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-test-support)
2026-08-04T03:13:04.0480448Z    Compiling hyper-util v0.1.20
2026-08-04T03:13:04.2762250Z    Compiling spt-msg v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-msg)
2026-08-04T03:13:04.6591204Z    Compiling spt-runtime v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-runtime)
2026-08-04T03:13:04.6811119Z    Compiling spt-term v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-term)
2026-08-04T03:13:04.7595644Z    Compiling clap v4.6.1
2026-08-04T03:13:06.1297744Z    Compiling igd-next v0.17.1
2026-08-04T03:13:07.2720946Z    Compiling portmapper v0.16.0
2026-08-04T03:13:07.8485140Z    Compiling spt-live v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-live)
2026-08-04T03:13:11.8436426Z    Compiling rustls-webpki v0.103.13
2026-08-04T03:13:14.1572784Z    Compiling tokio-rustls v0.26.4
2026-08-04T03:13:14.1573233Z    Compiling noq-proto v0.17.0
2026-08-04T03:13:14.1573534Z    Compiling rustls-platform-verifier v0.7.0
2026-08-04T03:13:14.2936613Z    Compiling hyper-rustls v0.27.9
2026-08-04T03:13:14.2937396Z    Compiling hickory-net v0.26.0-beta.4
2026-08-04T03:13:14.2938388Z    Compiling tokio-websockets v0.13.2
2026-08-04T03:13:14.4256306Z    Compiling reqwest v0.13.4
2026-08-04T03:13:15.3286592Z    Compiling hickory-resolver v0.26.0-beta.4
2026-08-04T03:13:28.6992687Z    Compiling spt-net v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-net)
2026-08-04T03:13:30.4084759Z    Compiling spt-daemon v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt-daemon)
2026-08-04T03:13:40.7740918Z    Compiling spt v0.53.0 (/home/reavus/actions-runner/_work/spt-bs-core/spt-bs-core/crates/spt)
2026-08-04T03:13:46.6989561Z     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 07s
2026-08-04T03:13:46.7209454Z      Running tests/n1_pairing.rs (target/debug/deps/n1_pairing-dc213a1dadff6d29)
2026-08-04T03:13:46.7221975Z 
2026-08-04T03:13:46.7222183Z running 1 test
2026-08-04T03:13:52.9116487Z test new_brain_serves_against_old_broker ... ok
2026-08-04T03:13:52.9116806Z 
2026-08-04T03:13:52.9117024Z test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 6.19s
2026-08-04T03:13:52.9117311Z 
